| HttpSessionBindingEvent Class | |
| public class HttpSessionBindingEvent extends EventObject | |
Object EventObject HttpSessionBindingEvent An HttpSessionBindingEvent object is generated whenever an object is bound to or unbound from a session. |
|
| HttpSessionBindingEvent() | |
| public HttpSessionBindingEvent(HttpSession session, String name) | Constructor |
|
Creates an HttpSessionBindingEvent object. The session and name are the parameters to which the HttpSessionBindingEvent object is bound or unbound. |
|
| getName() | |
| public String getName() | Method |
|
getName() returns the name associated with the object that is bound or unbound. |
|
| getSession() | |
| public HttpSession getSession() | Method |
|
getSession() returns the session associated with the object that is bound or unbound. |
|